home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 1997 #1 / Amiga Plus CD - 1997 - No. 01.iso / pd / anti-virus / xtruder / rexx / examples / xtruder_getpath.rexx < prev    next >
OS/2 REXX Batch file  |  1985-03-24  |  264b  |  14 lines

  1. /*
  2. ** 'GetPath' example
  3. */
  4.  
  5. Options Results
  6. Address XTRUDER
  7.  
  8. GetPath TITLE '"Select a path..."' PATH '"DH0:"'
  9.  
  10. IF RC ~= 0 THEN
  11.    RequestUser TEXT '"You forgot to select a path!"' RESPONSE '"Bugger!"'
  12. ELSE
  13.    RequestUser TEXT RESULT RESPONSE '"That was the one!"'
  14.